home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / New System Software Extensions / ASLM SDK v1.1.2 / ASLM Examples / TestTools / Sources / TestFSet.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-21  |  803 b   |  37 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestFSet.h
  3.  
  4.     Contains:    Declaration for the TTestFSet class
  5.  
  6.     Copyright:    © 1992-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTFSET__
  11. #define __TESTFSET__
  12.  
  13. #ifndef __TESTTOOL__
  14. #include <TestTool.h>
  15. #endif
  16.  
  17. /*******************************************************************************
  18. ** CLASS TTestFSet
  19. ********************************************************************************/
  20.  
  21. #define kTTestFSetID    kTestToolPrefix "TTestFSet,1.1"
  22.  
  23. class TTestFSet : public TTestTool
  24. {
  25.     public:
  26.                             TTestFSet();
  27.         virtual                ~TTestFSet();
  28.         
  29.         virtual void        InitTest(Boolean verbose, Boolean debug,
  30.                                      int argc, char** argv);        
  31.         virtual void        RunTestIteration(Boolean verbose, Boolean debug);
  32.         virtual void        EndTest(Boolean verbose, Boolean debug);
  33.         
  34. };
  35.  
  36. #endif
  37.